/* .wrappers {
  height: 140px;
} */

/* Assurez-vous de commenter correctement le code que vous ne souhaitez pas utiliser. */

/* Utilisez des commentaires pour expliquer le but de chaque section de votre code. */

/* La classe .container-ticker */
.container-ticker {
    width: 100%;
    position: fixed;
    /* bottom: 0; */
    z-index: 99999;
    top: 0;
}

/* La classe .tv-container */
.tv-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
}

/* La classe .tv-header */
.tv-container .tv-header {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 24px;
    padding: 12px 0;
}

/* La classe .hashtag */
.tv-container .tv-header .hashtag {
    color: #ffffff;
    font-size: 22px;
}

/* La classe .logo img */
.tv-container .tv-header .logo img {
    width: 100px;
}

/* La classe .tv-text */
.tv-container .tv-text {
    text-transform: uppercase;
    /* bottom: 0; */
    position: absolute;
    width: 100%;
}

/* La classe .subtitle */
.tv-container .tv-text .subtitle {
    background: linear-gradient(
        -122deg,
        transparent 50%,
        #ffffff 0%,
        #f38030 0
    );
    width: 172px;
    padding: 6px 0;
}

/* La classe .subtitle h3 */
.tv-container .tv-text .subtitle h3 {
    margin: 0 !important;
    color: #fff;
}

/* La classe .title */
.tv-container .tv-text .title {
    background: rgba(0, 0, 0, 0.5);
    padding: 18px 12px;
    color: #fff;
    font-weight: 100;
}

/* La classe .footer */
.tv-container .tv-text .footer {
    background: #009e60;
    /* background: #009e60; */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400 !important;
    font-size: 17px !important;
}

/* La classe .footer-logo */
.tv-container .tv-text .footer-logo {
    background: black;
    width: 120px;
    height: 40px;
}

.tv-container .tv-text .footer-logo p {
    padding-top: 7px;
    font-size: 13px;
    text-align: center;
}

/* La classe .footer-slide */
.tv-container .tv-text .footer-slide {
    /* background: #f38030; */
    /* background: #d2161e; */
    background: #009e60;

    /* width: 100%; */
    height: 40px;
}

/* La classe .footer-slide p */
/* .tv-container .tv-text .footer-slide p {
    padding-top: 7px !important;
    color: #fff !important;
} */

/* Style des liens à l'intérieur de .footer-slide */
.footer-slide a {
    color: #fff; /* Couleur du texte */
    text-decoration: none; /* Supprime le soulignement des liens */
    transition: color 0.3s; /* Ajoute une transition de couleur au survol */
    font-size: 13px;
    font-weight: bold;
}

.footer-slide a:hover {
    color: #000; /* Couleur du texte au survol */
}

.tv-container .tv-text .footer-slide p {
    padding-top: 7px !important;
    color: #fff !important;
    white-space: nowrap; /* Empêche le texte de revenir à la ligne */
    margin: 0; /* Réinitialise la marge pour éviter les espacements inutiles */
}

/* La classe .footer-clock */
.tv-container .tv-text .footer-clock {
    background: black;
    color: #fff;
    padding-top: 7px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
}

/* La classe .marquee */
.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    display: block;
}

/* La classe .marquee p */
/* .marquee p {
    display: inline-block;
    text-indent: 0;
    overflow: hidden;
    animation: effmarquee 30s linear infinite;
} */

.marquee p {
    display: inline-block;
    text-indent: 0;
    white-space: nowrap; /* Empêche le texte de revenir à la ligne */
    overflow: hidden;
    animation: effmarquee 60s linear infinite;
}

/* Définition des keyframes pour l'animation */
@keyframes effmarquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ajoutez les styles CSS pour la classe "red-text" ici */
.red-text {
    color: #fff !important;
    background-color: red !important;
    display: inline !important;
}
